All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ScrollView

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.View
                           |
                           +----com.apple.alpha.app.ScrollView

public class ScrollView
extends View
This class wraps the Objective-C class NSScrollView.


Constructor Index

 o ScrollView()
This default constructor is equivalent to Objective-C's [[NSScrollView alloc] init].
 o ScrollView(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o ScrollView(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o ScrollView(Rect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Method Index

 o backgroundColor()
A wrapper for the - backgroundColor Objective-C instance method.
 o borderType()
A wrapper for the - borderType Objective-C instance method.
 o contentSize()
A wrapper for the - contentSize Objective-C instance method.
 o contentSizeForFrameSize(Size, boolean, boolean, int)
A wrapper for the + contentSizeForFrameSize:hasHorizontalScroller:hasVerticalScroller:borderType: Objective-C class method.
 o contentView()
A wrapper for the - contentView Objective-C instance method.
 o documentCursor()
A wrapper for the - documentCursor Objective-C instance method.
 o documentView()
A wrapper for the - documentView Objective-C instance method.
 o documentVisibleRect()
A wrapper for the - documentVisibleRect Objective-C instance method.
 o frameSizeForContentSize(Size, boolean, boolean, int)
A wrapper for the + frameSizeForContentSize:hasHorizontalScroller:hasVerticalScroller:borderType: Objective-C class method.
 o hasHorizontalRuler()
A wrapper for the - hasHorizontalRuler Objective-C instance method.
 o hasHorizontalScroller()
A wrapper for the - hasHorizontalScroller Objective-C instance method.
 o hasVerticalRuler()
A wrapper for the - hasVerticalRuler Objective-C instance method.
 o hasVerticalScroller()
A wrapper for the - hasVerticalScroller Objective-C instance method.
 o horizontalRulerView()
A wrapper for the - horizontalRulerView Objective-C instance method.
 o horizontalScroller()
A wrapper for the - horizontalScroller Objective-C instance method.
 o isRulerVisible()
A wrapper for the - isRulerVisible Objective-C instance method.
 o lineScroll()
A wrapper for the - lineScroll Objective-C instance method.
 o pageScroll()
A wrapper for the - pageScroll Objective-C instance method.
 o reflectScrolledClipView(ClipView)
A wrapper for the - reflectScrolledClipView: Objective-C instance method.
 o rulersVisible()
A wrapper for the - rulersVisible Objective-C instance method.
 o scrollsDynamically()
A wrapper for the - scrollsDynamically Objective-C instance method.
 o setBackgroundColor(Color)
A wrapper for the - setBackgroundColor: Objective-C instance method.
 o setBorderType(int)
A wrapper for the - setBorderType: Objective-C instance method.
 o setContentView(ClipView)
A wrapper for the - setContentView: Objective-C instance method.
 o setDocumentCursor(Cursor)
A wrapper for the - setDocumentCursor: Objective-C instance method.
 o setDocumentView(View)
A wrapper for the - setDocumentView: Objective-C instance method.
 o setHasHorizontalRuler(boolean)
A wrapper for the - setHasHorizontalRuler: Objective-C instance method.
 o setHasHorizontalScroller(boolean)
A wrapper for the - setHasHorizontalScroller: Objective-C instance method.
 o setHasVerticalRuler(boolean)
A wrapper for the - setHasVerticalRuler: Objective-C instance method.
 o setHasVerticalScroller(boolean)
A wrapper for the - setHasVerticalScroller: Objective-C instance method.
 o setHorizontalRulerView(RulerView)
A wrapper for the - setHorizontalRulerView: Objective-C instance method.
 o setHorizontalScroller(Scroller)
A wrapper for the - setHorizontalScroller: Objective-C instance method.
 o setLineScroll(float)
A wrapper for the - setLineScroll: Objective-C instance method.
 o setPageScroll(float)
A wrapper for the - setPageScroll: Objective-C instance method.
 o setRulersVisible(boolean)
A wrapper for the - setRulersVisible: Objective-C instance method.
 o setScrollsDynamically(boolean)
A wrapper for the - setScrollsDynamically: Objective-C instance method.
 o setVerticalRulerView(RulerView)
A wrapper for the - setVerticalRulerView: Objective-C instance method.
 o setVerticalScroller(Scroller)
A wrapper for the - setVerticalScroller: Objective-C instance method.
 o tile()
A wrapper for the - tile Objective-C instance method.
 o toggleRuler(Object)
A wrapper for the - toggleRuler: Objective-C instance method.
 o verticalRulerView()
A wrapper for the - verticalRulerView Objective-C instance method.
 o verticalScroller()
A wrapper for the - verticalScroller Objective-C instance method.

Constructors

 o ScrollView
 protected ScrollView(boolean shouldAllocate,
                      int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o ScrollView
 public ScrollView()
This default constructor is equivalent to Objective-C's [[NSScrollView alloc] init].

 o ScrollView
 public ScrollView(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o ScrollView
 public ScrollView(Rect frameRect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Methods

 o frameSizeForContentSize
 public static native Size frameSizeForContentSize(Size cSize,
                                                   boolean hFlag,
                                                   boolean vFlag,
                                                   int aType)
A wrapper for the + frameSizeForContentSize:hasHorizontalScroller:hasVerticalScroller:borderType: Objective-C class method.

 o contentSizeForFrameSize
 public static native Size contentSizeForFrameSize(Size fSize,
                                                   boolean hFlag,
                                                   boolean vFlag,
                                                   int aType)
A wrapper for the + contentSizeForFrameSize:hasHorizontalScroller:hasVerticalScroller:borderType: Objective-C class method.

 o documentVisibleRect
 public native Rect documentVisibleRect()
A wrapper for the - documentVisibleRect Objective-C instance method.

 o contentSize
 public native Size contentSize()
A wrapper for the - contentSize Objective-C instance method.

 o setDocumentView
 public native void setDocumentView(View aView)
A wrapper for the - setDocumentView: Objective-C instance method.

 o documentView
 public native Object documentView()
A wrapper for the - documentView Objective-C instance method.

 o setContentView
 public native void setContentView(ClipView contentView)
A wrapper for the - setContentView: Objective-C instance method.

 o contentView
 public native ClipView contentView()
A wrapper for the - contentView Objective-C instance method.

 o setDocumentCursor
 public native void setDocumentCursor(Cursor anObj)
A wrapper for the - setDocumentCursor: Objective-C instance method.

 o documentCursor
 public native Cursor documentCursor()
A wrapper for the - documentCursor Objective-C instance method.

 o setBorderType
 public native void setBorderType(int aType)
A wrapper for the - setBorderType: Objective-C instance method.

 o borderType
 public native int borderType()
A wrapper for the - borderType Objective-C instance method.

 o setBackgroundColor
 public native void setBackgroundColor(Color color)
A wrapper for the - setBackgroundColor: Objective-C instance method.

 o backgroundColor
 public native Color backgroundColor()
A wrapper for the - backgroundColor Objective-C instance method.

 o setHasVerticalScroller
 public native void setHasVerticalScroller(boolean flag)
A wrapper for the - setHasVerticalScroller: Objective-C instance method.

 o hasVerticalScroller
 public native boolean hasVerticalScroller()
A wrapper for the - hasVerticalScroller Objective-C instance method.

 o setHasHorizontalScroller
 public native void setHasHorizontalScroller(boolean flag)
A wrapper for the - setHasHorizontalScroller: Objective-C instance method.

 o hasHorizontalScroller
 public native boolean hasHorizontalScroller()
A wrapper for the - hasHorizontalScroller Objective-C instance method.

 o setVerticalScroller
 public native void setVerticalScroller(Scroller anObject)
A wrapper for the - setVerticalScroller: Objective-C instance method.

 o verticalScroller
 public native Scroller verticalScroller()
A wrapper for the - verticalScroller Objective-C instance method.

 o setHorizontalScroller
 public native void setHorizontalScroller(Scroller anObject)
A wrapper for the - setHorizontalScroller: Objective-C instance method.

 o horizontalScroller
 public native Scroller horizontalScroller()
A wrapper for the - horizontalScroller Objective-C instance method.

 o setLineScroll
 public native void setLineScroll(float value)
A wrapper for the - setLineScroll: Objective-C instance method.

 o lineScroll
 public native float lineScroll()
A wrapper for the - lineScroll Objective-C instance method.

 o setPageScroll
 public native void setPageScroll(float value)
A wrapper for the - setPageScroll: Objective-C instance method.

 o pageScroll
 public native float pageScroll()
A wrapper for the - pageScroll Objective-C instance method.

 o setScrollsDynamically
 public native void setScrollsDynamically(boolean flag)
A wrapper for the - setScrollsDynamically: Objective-C instance method.

 o scrollsDynamically
 public native boolean scrollsDynamically()
A wrapper for the - scrollsDynamically Objective-C instance method.

 o tile
 public native void tile()
A wrapper for the - tile Objective-C instance method.

 o reflectScrolledClipView
 public native void reflectScrolledClipView(ClipView cView)
A wrapper for the - reflectScrolledClipView: Objective-C instance method.

Overrides:
reflectScrolledClipView in class View
 o setRulersVisible
 public native void setRulersVisible(boolean flag)
A wrapper for the - setRulersVisible: Objective-C instance method.

 o rulersVisible
 public native boolean rulersVisible()
A wrapper for the - rulersVisible Objective-C instance method.

 o setHasHorizontalRuler
 public native void setHasHorizontalRuler(boolean flag)
A wrapper for the - setHasHorizontalRuler: Objective-C instance method.

 o hasHorizontalRuler
 public native boolean hasHorizontalRuler()
A wrapper for the - hasHorizontalRuler Objective-C instance method.

 o setHasVerticalRuler
 public native void setHasVerticalRuler(boolean flag)
A wrapper for the - setHasVerticalRuler: Objective-C instance method.

 o hasVerticalRuler
 public native boolean hasVerticalRuler()
A wrapper for the - hasVerticalRuler Objective-C instance method.

 o setHorizontalRulerView
 public native void setHorizontalRulerView(RulerView ruler)
A wrapper for the - setHorizontalRulerView: Objective-C instance method.

 o horizontalRulerView
 public native RulerView horizontalRulerView()
A wrapper for the - horizontalRulerView Objective-C instance method.

 o setVerticalRulerView
 public native void setVerticalRulerView(RulerView ruler)
A wrapper for the - setVerticalRulerView: Objective-C instance method.

 o verticalRulerView
 public native RulerView verticalRulerView()
A wrapper for the - verticalRulerView Objective-C instance method.

 o toggleRuler
 public native void toggleRuler(Object sender)
A wrapper for the - toggleRuler: Objective-C instance method.

 o isRulerVisible
 public native boolean isRulerVisible()
A wrapper for the - isRulerVisible Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index